@charset "utf-8";
/* CSS Document */

body {

	background: radial-gradient(circle at center, #0a2b0a 0%, #000000 80%);
    background-attachment: fixed;
}

.geri-btn {
	border: 2px solid #39FF14;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.4s;
}

.geri-btn:hover {
	background-color: #39FF14;
    color: black;
    box-shadow: 0 0 15px #39FF14;
}

.uzayli-konteyner {
    display: flex;       
    align-items: center;             
    padding: 40px 0;   
}

.uzaylı-kart {
	display: flex;
	background: #111;
	border:2px solid #333;
	border-radius:20px;
	width:90%;
	max-width:850px;
	padding: 20px;
	transition:0.04s;
	overflow:hidden;
}

.uzayli-kart img {
	width:180px;
	height:180px;
	border-radius: 15px;
	border:3px solid#39FF14;
	margin-right:25px;
}

.ozellikler h2 {
	color:#39FF14;
	margin-top:0;
	font-size:17px;
	text-transform: uppercase;
}

.ozellikler p {
	font-size:15px;
	line-height: 1.5;
	color:#ccc;
}

.uzayli-kart:hover {
	border-color:#39FF14;
	transform: scale(1,005);
	transform:translateY(-2px);
	box-shadow: 0 4px 15px rgba(57,255,20,0.2);
	background:#1a1a1a;
}

@keyframes yukarıKaydır {
	from{
		opacity:0;
		transform:translateY(30px);
	}
	to{
		opacity:1;
		transform: translateY(0);
	}
}

.uzayli-kart {
	animation: yukarıKaydır 1s ease-out;
}

